home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- BackColor = &H00C0C0C0&
- Caption = "Form1"
- ClientHeight = 6150
- ClientLeft = 2970
- ClientTop = 2250
- ClientWidth = 8595
- Height = 6555
- Left = 2910
- LinkTopic = "Form1"
- ScaleHeight = 6150
- ScaleWidth = 8595
- Top = 1905
- Width = 8715
- Begin CommandButton Command2
- Caption = "Quit"
- Height = 615
- Left = 2400
- TabIndex = 4
- Top = 3840
- Width = 1935
- End
- Begin CommandButton Command1
- Caption = "Left"
- Height = 375
- Index = 3
- Left = 2400
- TabIndex = 3
- Top = 2280
- Width = 1215
- End
- Begin CommandButton Command1
- Caption = "Right"
- Height = 375
- Index = 2
- Left = 2400
- TabIndex = 2
- Top = 1680
- Width = 1215
- End
- Begin CommandButton Command1
- Caption = "Up"
- Height = 375
- Index = 1
- Left = 2400
- TabIndex = 1
- Top = 1080
- Width = 1215
- End
- Begin CommandButton Command1
- Caption = "Down"
- Height = 375
- Index = 0
- Left = 2400
- TabIndex = 0
- Top = 600
- Width = 1215
- End
- Begin Grad GSSGrad1
- Direction = 0 'Down
- GradColor = &H00FF0000&
- Left = 1440
- Top = 1680
- End
- Option Explicit
- Sub Command1_Click (Index As Integer)
- GSSGrad1.Direction = Index
- GSSGrad1.Refresh
- End Sub
- Sub Command2_Click ()
- End Sub
- Sub Form_Resize ()
- GSSGrad1.Refresh
- End Sub
-